home *** CD-ROM | disk | FTP | other *** search
- /*----------------------------------------------------------------------
- *
- * curstype.c
- *
- * copyright (c) 1987,88,89,90 J. Alan Eldridge
- *
- * cursor types for IBM PCs etc.
- *
- *----------------------------------------------------------------------
- */
-
- #include "curses.h"
-
- void
- blkcursor()
- {
- sizecursor(0, iscolor() ? 7 : 13);
- }
-
- void
- undcursor()
- {
- register int l = iscolor() ? 7 : 13;
-
- sizecursor(l - 1, l);
- }
-